home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 February / Gamestar_81_2006-02_dvd.iso / Programy / weatherpulse-setup.exe / {userappdata} / Weather Pulse / Html / xsl / detailed_style.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2004-08-12  |  2.9 KB  |  114 lines

  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match="/weather">
  4. <html>
  5. <head>
  6. <style type="text/css">
  7. body 
  8. margin-top: 0px;
  9. margin-bottom: 0px;
  10. margin-right:0px;
  11. margin-left: 0px;
  12. }
  13. .location 
  14.     font-family: Verdana, Arial, Helvetica, sans-serif;
  15.     font-size: 13px;
  16.     font-weight:bold;
  17.     color: #FFFFFF;
  18.     background-color:#003366;    
  19. }
  20. .title 
  21.     font-family: Verdana, Arial, Helvetica, sans-serif;
  22.     font-size: 12px;
  23.     font-weight:bold;
  24.     color: #000000;
  25. }
  26.  
  27. .footer
  28.     font-family: font-family : Verdana, Arial, Helvetica, sans-serif;
  29.     font-size: 10px;
  30.     font-weight:none;
  31.     color: #000000;
  32. }
  33. .values
  34.     font-family: Verdana, Arial, Helvetica, sans-serif;
  35.     font-size: 12px;
  36.     font-weight:none;
  37.     color: #000000;
  38.     background-color:#EBEFF4;
  39. }
  40. .date
  41.     font-family: Verdana, Arial, Helvetica, sans-serif;
  42.     font-size: 12px;
  43.     font-weight:bold;
  44.     color: #003366;
  45. }
  46.  
  47. A:link     
  48.     color: #3333FF;
  49.     font-size: 12px; 
  50.     font-family: Verdana, Arial, Helvetica, sans-serif;
  51. }
  52.  
  53.  
  54. A:visited     
  55.     color: #3333FF;
  56.     font-size: 12px; 
  57.     font-family: Verdana, Arial, Helvetica, sans-serif;
  58. }
  59.  
  60.  
  61. A:active     
  62.     color: #3333FF;
  63.     font-size: 12px; 
  64.     font-family: Verdana, Arial, Helvetica, sans-serif;
  65. }
  66.  
  67. </style>
  68. </head> 
  69. <table width="100%" height="100%" border="0" cellSpacing="1" cellPadding="5" ID="Table1">
  70.   <tr>
  71.     <td colspan="2" align="left" valign="center" class="location" height="40px">
  72.         Detailed Forecast for: <xsl:value-of select="loc/dnam"></xsl:value-of>
  73.     </td>
  74.   </tr>
  75.   <xsl:for-each select="dayd/day">
  76.       <xsl:variable name="day"><xsl:value-of select="@t"></xsl:value-of></xsl:variable>
  77.       <xsl:for-each select="part">
  78.          <xsl:variable name="d">d</xsl:variable>
  79.          <xsl:variable name="n">n</xsl:variable>
  80.          <xsl:variable name="tm"><xsl:value-of select="@p"></xsl:value-of></xsl:variable> 
  81.          <tr>
  82.          <xsl:if test="$tm = $n">
  83.             <td class="date"><xsl:value-of select="$day"/> night:</td>
  84.             <td class="values"><xsl:value-of select="t"></xsl:value-of></td>         
  85.          </xsl:if>
  86.          <xsl:if test="$tm = $d">
  87.             <td class="date"><xsl:value-of select="$day"/></td>
  88.             <td class="values"><xsl:value-of select="t"></xsl:value-of></td>             
  89.          </xsl:if>
  90.       </tr>     
  91.       </xsl:for-each> 
  92. </xsl:for-each>
  93.        
  94.         <tr>
  95.         <td colspan="5"><xsl:variable name="loc"><xsl:value-of select="loc/@id"></xsl:value-of></xsl:variable>
  96.         <font class="footer">Last updated
  97.        <xsl:value-of select="dayd/lsup"></xsl:value-of> 
  98.        <br/><a href="http://www.w3.weather.com/weather/local/{$loc}">View this forecast at weather.com</a>
  99.        </font>
  100.         </td>
  101.         </tr>
  102.       </table>
  103.       </html>
  104.   </xsl:template>
  105. </xsl:stylesheet>